home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / ActiveX Controlls / NCTAudioEditor2 ActiveX DLL / NCTAudioEditor2.exe / {app} / Samples / TestDelphiAudioEditor2 / Raw.dfm < prev    next >
Encoding:
Text File  |  2002-10-10  |  1.5 KB  |  82 lines

  1. object frmRaw: TfrmRaw
  2.   Left = 255
  3.   Top = 219
  4.   BorderStyle = bsDialog
  5.   Caption = 'Set RAW Format'
  6.   ClientHeight = 160
  7.   ClientWidth = 394
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   OldCreateOrder = True
  11.   Position = poScreenCenter
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object OKBtn: TButton
  15.     Left = 308
  16.     Top = 13
  17.     Width = 75
  18.     Height = 25
  19.     Caption = 'OK'
  20.     Default = True
  21.     ModalResult = 1
  22.     TabOrder = 0
  23.     OnClick = OKBtnClick
  24.   end
  25.   object CancelBtn: TButton
  26.     Left = 308
  27.     Top = 43
  28.     Width = 75
  29.     Height = 25
  30.     Cancel = True
  31.     Caption = 'Cancel'
  32.     ModalResult = 2
  33.     TabOrder = 1
  34.   end
  35.   object rgFrequency: TRadioGroup
  36.     Left = 8
  37.     Top = 8
  38.     Width = 185
  39.     Height = 145
  40.     Caption = 'Frequency (Hz)'
  41.     Columns = 2
  42.     ItemIndex = 8
  43.     Items.Strings = (
  44.       '6000'
  45.       '8000'
  46.       '11025'
  47.       '12000'
  48.       '16000'
  49.       '22050'
  50.       '24000'
  51.       '32000'
  52.       '44100'
  53.       '48000')
  54.     TabOrder = 2
  55.   end
  56.   object rgChannels: TRadioGroup
  57.     Left = 200
  58.     Top = 94
  59.     Width = 97
  60.     Height = 59
  61.     Caption = 'Channels'
  62.     ItemIndex = 1
  63.     Items.Strings = (
  64.       'Mono'
  65.       'Stereo')
  66.     TabOrder = 3
  67.   end
  68.   object rgCompression: TRadioGroup
  69.     Left = 200
  70.     Top = 8
  71.     Width = 97
  72.     Height = 81
  73.     Caption = 'Compression'
  74.     ItemIndex = 0
  75.     Items.Strings = (
  76.       '16-bit PCM'
  77.       '8-bit A-Law'
  78.       '8-bit mu-Law')
  79.     TabOrder = 4
  80.   end
  81. end
  82.